home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1995 November / EnigmA AMIGA RUN 02 (1995)(G.R. Edizioni)(IT)[!][issue 1995-11][Skylink CD].iso / earcd / giochi / amigainf.lha / Inform / examples / hellow.inf < prev    next >
Text File  |  1995-08-02  |  680b  |  31 lines

  1. !
  2. ! A great step backward in interactive fiction...
  3. !
  4.  
  5. Object hillside "Bare hillside" nothing;
  6.  
  7. global place = hillside;
  8. global score = 0;
  9. global turns = 1;
  10.  
  11. [ Main;
  12.  
  13.   print "^^^^^^^^^^^You wake up, shivering to see that Morgoth \
  14.          the Flatulent Devil is towering over you...^^";
  15.   Message();
  16.   print "^^...and he squashes you effortlessly.\
  17.          ^^   *** You have died ***^^^^^";
  18.  
  19.   quit;
  20. ];
  21.  
  22. [ Message i; 
  23.  
  24.   print "HELLO CRUEL WORLD^\
  25.          A Non-Interactive Demonstration^\
  26.          Copyright (c) 1993 by Graham Nelson. All rights reserved.^\
  27.          Release ", (0-->1) & $03ff, " / Serial number ";
  28.  
  29.   for (i=18 : i<24 : i++) print char 0->i;  new_line;
  30. ];
  31.